crypto/tls.clientHelloMsg.pskBinders (field)

14 uses

	crypto/tls (current package)
		handshake_client.go#L344: 	hello.pskBinders = [][]byte{make([]byte, cipherSuite.hash.Size())}
		handshake_client_tls13.go#L259: 			hs.hello.pskBinders = nil
		handshake_messages.go#L94: 	pskBinders                       [][]byte
		handshake_messages.go#L282: 						for _, binder := range m.pskBinders {
		handshake_messages.go#L308: 	for _, binder := range m.pskBinders {
		handshake_messages.go#L321: 	if len(pskBinders) != len(m.pskBinders) {
		handshake_messages.go#L324: 	for i := range m.pskBinders {
		handshake_messages.go#L325: 		if len(pskBinders[i]) != len(m.pskBinders[i]) {
		handshake_messages.go#L329: 	m.pskBinders = pskBinders
		handshake_messages.go#L334: 			for _, binder := range m.pskBinders {
		handshake_messages.go#L576: 				m.pskBinders = append(m.pskBinders, binder)
		handshake_server_tls13.go#L242: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L302: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {